home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1999 / MacHack 1999.toast / The Hacks / MACtive Desktop / Source / Headers / AppleMenu.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-07-30  |  337 b   |  25 lines  |  [TEXT/CWIE]

  1. #ifndef _APPLEMENU_
  2. #define _APPLEMENU_
  3.  
  4. #ifndef _BASEMENU_
  5. #include "BaseMenu.h"
  6. #endif
  7.  
  8.  
  9.  
  10.  
  11.  
  12. typedef class AppleMenu : public BaseMenu
  13. {
  14. public:
  15.     AppleMenu(void);
  16.     
  17.     virtual void HandleSelect(UInt32 item);
  18.     virtual void HandleSetDisableState(Boolean isBeingDisabled);
  19.     
  20.     void ShowAboutBox(void);
  21. } AppleMenu;
  22.  
  23.  
  24. #endif /* _APPLEMENU_ */
  25.